DataSource for Entity Framework in WPF
C1.LiveLinq.Indexing Namespace / IIndexedSource<T> Interface
The type of the elements of the collection.
Members

In This Topic
    IIndexedSource<T> Interface
    In This Topic
    Represents an indexed collection.
    Object Model
    IIndexedSource<T> Interface
    Syntax
    'Declaration
     
    Public Interface IIndexedSource(Of T) 
    public interface IIndexedSource<T> 
    Type Parameters
    T
    The type of the elements of the collection.
    Remarks

    An indexed collection has a collection of indexes, ScannerCollection<T> that are maintained up-to-date on every change made to the collection.

    This interface is implemented by all main LiveLinq collection classes: C1.LiveLinq.Collections.IndexedCollection<T>, C1.LiveLinq.AdoNet.IndexedDataTable<TRow>, C1.LiveLinq.LiveViews.View<T>.

    You need to implement this interface only if you want to define your own indexable collection classes and then only if they don't inherit from C1.LiveLinq.Collections.IndexedCollection<T>, see LiveLinq to Objects: IndexedCollection(T) and other collection classes.

    See Also